Prettier
Centurion uses the prettier configuration file from the data-feeds repo as its template. Currently there is no standard across the enterprise for use of prettier.
Developers should check the data-feeds repo for changes from time-to-time.
{
"bracketSpacing": true,
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"overrides": [
{
"files": "*.md",
"options": {
"parser": "markdown",
"proseWrap": "always"
}
}
]
}